home *** CD-ROM | disk | FTP | other *** search
Makefile | 2003-08-08 | 461 b | 25 lines |
- #
- # @(#)Makefile 1.13 97/07/23 00:48:22
- #
- # Makefile to compile Java3D test programs
- #
- # variables that need values to build succesfully:
- # CLASSPATH The path for all imported Java Classes
-
- .KEEP_STATE:
-
- SUBDIRS = examples
-
- SUBDIR_TARGETS = all clean clean-nuke
-
- default-target: all
-
- install:
- @echo "install target is obsolete"
-
- $(SUBDIR_TARGETS):
- -@for i in $(SUBDIRS); do ( \
- echo "cd $$i; make $@"; \
- cd $$i ; make $@); \
- done
-